home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestBCBAudioEditor2 / Raw.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-10  |  1.0 KB  |  33 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef RawH
  3. #define RawH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\SysUtils.hpp>
  13. #include <vcl\Windows.hpp>
  14. #include <vcl\System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TfrmRaw : public TForm
  17. {
  18. __published:
  19.     TButton *OKBtn;
  20.     TButton *CancelBtn;
  21.     TRadioGroup *rgFrequency;
  22.     TRadioGroup *rgChannels;
  23.     TRadioGroup *rgCompression;
  24.     void __fastcall OKBtnClick(TObject *Sender);
  25. private:
  26. public:
  27.     virtual __fastcall TfrmRaw(TComponent* AOwner);
  28. };
  29. //----------------------------------------------------------------------------
  30. extern PACKAGE TfrmRaw *frmRaw;
  31. //----------------------------------------------------------------------------
  32. #endif    
  33.